home *** CD-ROM | disk | FTP | other *** search
/ Workbench Add-On / Workbench Add-On - Volume 1.iso / BBS-Archive / Comm / AmiTCP30b2.lha / src / netlib / dummy.c < prev    next >
C/C++ Source or Header  |  1993-08-12  |  427b  |  21 lines

  1. /*
  2.  * dummy.c --- unimplemented netdb functions 
  3.  *
  4.  * Created      : Sat Mar 20 10:06:38 1993 ppessi
  5.  * Last modified: Sat Mar 20 10:15:21 1993 ppessi
  6.  *
  7.  */
  8.  
  9. #include <netdb.h>
  10. #if !__SASC
  11. #define NULL ((void *) 0)
  12. #endif
  13. struct hostent  *gethostent(void)
  14. { return NULL; }
  15. struct netent  *getnetent(void)
  16. { return NULL; }
  17. struct servent  *getservent(void)
  18. { return NULL; }
  19. struct protoent *getprotoent(void)
  20. { return NULL; }
  21.